home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Think Class Libraries / WASTE TCL 2.0b2 / WASTE VA / Source / x_CVAWASTEDlgText.cp < prev    next >
Encoding:
Text File  |  1996-06-16  |  1.6 KB  |  62 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  x_CVAWASTEDlgText.cp
  3.  
  4.                 CVAWASTEDlgText DialogText Class
  5.     
  6.     Copyright Â© 1996 Dan Crevier. All rights reserved.
  7.  
  8.     Generated by Visual Architectâ„¢
  9.  
  10.     This file is rewritten each time you generate code. You should not
  11.     make changes to this file; changes should go in the CVAWASTEDlgText.cp
  12.     file, instead.
  13.  
  14.     If you want to change how Visual Architect generates this file, you can
  15.     change the template for this file. It is "_Text_cp" in the Visual Architect
  16.     Templates folder.
  17.  
  18.  ******************************************************************************/
  19.  
  20. #include "x_CVAWASTEDlgText.h"
  21.  
  22. #include "ViewUtilities.h"
  23.  
  24.  
  25. TCL_DEFINE_CLASS_M1(x_CVAWASTEDlgText, CWASTEDlgText);
  26.  
  27. /**** C O N S T R U C T I O N / D E S T R U C T I O N   M E T H O D S ****/
  28.  
  29.  
  30. /******************************************************************************
  31.  PutTo
  32.  
  33.         Put the contents of this object to the stream
  34.  ******************************************************************************/
  35.  
  36. void    x_CVAWASTEDlgText::PutTo(
  37.     CStream     &aStream)
  38. {
  39.         // Put data members for this class
  40.  
  41.  
  42.     CWASTEDlgText::PutTo(aStream);    /* Let superclass save                */
  43. }
  44.  
  45.  
  46. /******************************************************************************
  47.  GetFrom
  48.  
  49.         Get the contents of this object from the stream and
  50.         initialize the object
  51.  ******************************************************************************/
  52.  
  53. void    x_CVAWASTEDlgText::GetFrom(
  54.     CStream     &aStream)
  55. {
  56.         // Get data members for this class
  57.  
  58.  
  59.                                         /* Let superclass restore            */
  60.     CWASTEDlgText::GetFrom(aStream);
  61. }
  62.